┌────────────────────────────────┐ │ ░░░ ░░▓ ░▓▓ ███ ▓▓░ ▓░░ │ │ ~ M O O N ~ │ └────────────────────────────────┘
prd-web-01.centraldc.gr
LOCATION:
/usr/share/pie/vendor/illuminate/contracts/Cookie
☗ ROOT
↻ REFRESH
✎ EDIT FILE
EDITING: QueueingFactory.php
<?php namespace Illuminate\Contracts\Cookie; interface QueueingFactory extends Factory { /** * Queue a cookie to send with the next response. * * @param mixed ...$parameters * @return void */ public function queue(...$parameters); /** * Remove a cookie from the queue. * * @param string $name * @param string|null $path * @return void */ public function unqueue($name, $path = null); /** * Get the cookies which have been queued for the next request. * * @return array */ public function getQueuedCookies(); }
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 Factory.php
PHP
1.4 KB
2025-03-24 11:47
EDIT
📄 QueueingFactory.php
PHP
619 B
2025-03-24 11:47
EDIT